/* * File: cortlandStd.h * Author: douglas.armstead * * Created on April 19, 2016, 2:42 PM */ #ifndef CORTLANDSTD_H #define CORTLANDSTD_H #ifdef __cplusplus extern "C" { #endif // BEGIN CONFIG #pragma config FOSC = INTOSCIO // Oscillator Selection bits (selects internal oscillator) #pragma config WDTE = OFF // Watchdog Timer Enable bit (WDT disabled) #pragma config MCLRE =OFF //RA5 acts as I/O pin not memory clear. #pragma config PWRTE = OFF // Power-up Timer Enable bit (PWRT disabled) #pragma config BOREN = ON // Brown-out Reset Enable bit (BOR enabled) #pragma config LVP = OFF // Low-Voltage (Single-Supply) In-Circuit Serial Programming Enable bit //(RB3 is digital I/O, HV on MCLR must be used for programming) #pragma config CPD = OFF, CP = OFF, WRT = OFF // Flash Program Memory Code Protection bits //(Code protection and write protection off) //END CONFIG #ifdef __cplusplus } #endif #endif /* CORTLANDSTD_H */